Namespace - LJCNetCommon
Parameters
textState - The current text state values.
copyright - The copyright array.
fileName - The HTML file name.
Returns
The HTML beginning text.
Syntax
C# |
public String GetHTMLBegin(TextState textState, String[] copyright = null, String fileName = null)
|
Gets the HTML beginning up to and including <head>.
Example
C# |
var textState = new TextState();
var hb = new HTMLBuilder(textState);
var copyright = new string[]
{
"Copyright (c) First Line",
"Second Line",
};
var fileName = "File.html";
var result = hb.GetHTMLBegin(textState, copyright, fileName);
|
Copyright © Lester J. Clark and Contributors.
Licensed under the MIT License.